body{
margin:0;
padding:0;
font-family:Arial,sans-serif;
background:#f4f6f8;
box-sizing:border-box;
}

header{
background:#fff;
border-bottom:1px solid #ddd;
}

.header-left{
background:#111;
color:#fff;
padding:6px 20px;
font-size:13px;
}

.top-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
gap:20px;
flex-wrap:wrap;
}

.logo{
font-size:24px;
font-weight:bold;
color:#111;
}

.search-box{
display:flex;
gap:6px;
}

.search-box input{
padding:9px;
width:220px;
border:1px solid #ccc;
border-radius:6px;
outline:none;
}

.search-box button{
background:#1a73e8;
color:#fff;
border:none;
padding:9px 15px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}

.search-box button:hover{
background:#1558c0;
}

.icons{
display:flex;
gap:25px;
align-items:center;
flex-wrap:wrap;
}

.icon-box{
display:flex;
align-items:center;
gap:10px;
position:relative;
}

.icon{
font-size:20px;
}

.text{
display:flex;
flex-direction:column;
}

.small{
font-size:12px;
color:gray;
}

.cart-count{
position:absolute;
top:-6px;
left:16px;
background:#1a73e8;
color:#fff;
font-size:11px;
padding:2px 6px;
border-radius:50%;
}

.about-link{
font-weight:bold;
text-decoration:none;
color:#111;
}

.navbar{
display:flex;
gap:20px;
padding:12px 40px;
background:#eee;
flex-wrap:wrap;
}

.navbar a{
text-decoration:none;
color:#111;
font-weight:bold;
transition:0.3s;
}

.navbar a:hover{
color:#1a73e8;
}

.section1,.trending{
text-align:center;
padding:20px;
}

.title{
font-size:28px;
font-weight:bold;
margin:20px 0;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
padding:40px;
}

.product-card{
background:#fff;
border-radius:15px;
padding:18px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
display:flex;
flex-direction:column;
position:relative;
transition:0.3s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.product-card img{
width:100%;
height:170px;
object-fit:contain;
margin-bottom:10px;
transition:0.3s;
}

.product-card:hover img{
transform:scale(1.05);
}

.product-card h3{
font-size:15px;
margin:10px 0;
color:#222;
min-height:40px;
}

.price{
color:#e60023;
font-weight:bold;
font-size:18px;
margin:8px 0;
}

.old-price{
color:gray;
text-decoration:line-through;
font-size:13px;
}

.add-cart{
background:linear-gradient(135deg,#1a73e8,#0d47a1);
color:#fff;
border:none;
padding:10px;
border-radius:10px;
cursor:pointer;
margin-top:auto;
width:100%;
font-weight:bold;
transition:0.3s;
}

.add-cart:hover{
transform:scale(1.03);
background:linear-gradient(135deg,#0d47a1,#1a73e8);
}

.discount{
position:absolute;
top:10px;
left:10px;
background:#ff3b30;
color:#fff;
padding:5px 10px;
font-size:11px;
border-radius:20px;
font-weight:bold;
}

.social{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
padding:10px;
}

.social a{
text-decoration:none;
color:#fff;
background:#333;
padding:8px 12px;
border-radius:6px;
transition:0.3s;
}

.social a:hover{
background:#1a73e8;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

.more .blue-btn{
background:#1a73e8;
color:#fff;
border:none;
padding:10px 20px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}

.more .blue-btn:hover{
background:#1558c0;
}